home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJLSR106.ARJ / STRNCAT.C < prev    next >
C/C++ Source or Header  |  1992-03-02  |  2KB  |  61 lines

  1. /* This is file STRNCAT.C */
  2. /* This file may have been modified by DJ Delorie (Jan 1991).  If so,
  3. ** these modifications are Coyright (C) 1991 DJ Delorie, 24 Kirsten Ave,
  4. ** Rochester NH, 03867-2954, USA.
  5. */
  6.  
  7. /*-
  8.  * Copyright (c) 1990 The Regents of the University of California.
  9.  * All rights reserved.
  10.  *
  11.  * This code is derived from software contributed to Berkeley by
  12.  * Chris Torek.
  13.  *
  14.  * Redistribution and use in source and binary forms are permitted provided
  15.  * that: (1) source distributions retain this entire copyright notice and
  16.  * comment, and (2) distributions including binaries display the following
  17.  * acknowledgement:  ``This product includes software developed by the
  18.  * University of California, Berkeley and its contributors'' in the
  19.  * documentation or other materials provided with the distribution and in
  20.  * all advertising materials mentioning features or use of this software.
  21.  * Neither the name of the University nor the names of its contributors may
  22.  * be used to endorse or promote products derived from this software without
  23.  * specific prior written permission.
  24.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
  25.  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  26.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  27.  */
  28.  
  29. #if defined(LIBC_SCCS) && !defined(lint)
  30. static char sccsid[] = "@(#)strncat.c    5.5 (Berkeley) 5/17/90";
  31. #endif /* LIBC_SCCS and not lint */
  32.  
  33. #include <sys/stdc.h>
  34. #include <string.h>
  35.  
  36. /*
  37.  * Concatenate src on the end of dst.  At most strlen(dst)+n+1 bytes
  38.  * are written at dst (at most n+1 bytes being appended).  Return dst.
  39.  */
  40. char *
  41. strncat(dst, src, n)
  42.     char *dst;
  43.     const char *src;
  44.     register int n;
  45. {
  46.     if (n != 0) {
  47.         register char *d = dst;
  48.         register const char *s = src;
  49.  
  50.         while (*d != 0)
  51.             d++;
  52.         do {
  53.             if ((*d = *s++) == 0)
  54.                 break;
  55.             d++;
  56.         } while (--n != 0);
  57.         *d = 0;
  58.     }
  59.     return (dst);
  60. }
  61.